home *** CD-ROM | disk | FTP | other *** search
- property pSp, pMarker, pMovie
-
- on getPropertyDescriptionList
- d = [:]
- addProp(d, #pMarker, [#default: "name", #format: #string, #comment: "Enter the marker name"])
- addProp(d, #pMovie, [#default: "name", #format: #string, #comment: "enter the movie name"])
- return d
- end
-
- on beginSprite me
- pSp = me.spriteNum
- end
-
- on mouseUp me
- if pMovie = EMPTY then
- go(pMarker)
- else
- if pMarker = EMPTY then
- go(1, pMovie)
- else
- go(pMarker, pMovie)
- end if
- end if
- end
-
- on getBehaviorDescription
- description = "where do you want to go today?"
- return description
- end
-